home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-08-07 | 1.0 KB | 41 lines | [TEXT/MPS ] |
- (*
- File: OSAComp.mod
-
- Contains: AppleScript Components.Component Implementor's Interfaces.
-
- Version: Technology: AppleScript 1.1
- Package: Universal Interfaces 2.0 in “MPW Latest” on ETO #17
-
- Copyright: © 1984-1995 by Apple Computer, Inc.
- All rights reserved.
-
- Bugs?: If you find a problem with this file, use the Apple Bug Reporter
- stack. Include the file and version information (from above)
- in the problem description and send to:
- Internet: apple.bugs.applelink.apple.com
- AppleLink: APPLE.BUGS
-
- *)
-
- (*$TAGS-*)
- (*$CALLING PASCAL*)
- MODULE OSAComp;
-
- IMPORT SYSTEM, Types, AppleEvents;
-
- (* $PUSH*)
- (* $ALIGN MAC68K*)
- (* $LibExport+*)
-
- PROCEDURE OSAGetStorageType*(scriptData: Types.Handle; VAR dscType: AppleEvents.DescType): Types.OSErr;
- EXTERNAL PASCAL;
- PROCEDURE OSAAddStorageType*(scriptData: Types.Handle; dscType: AppleEvents.DescType): Types.OSErr;
- EXTERNAL PASCAL;
- PROCEDURE OSARemoveStorageType*(scriptData: Types.Handle): Types.OSErr;
- EXTERNAL PASCAL;
-
- (* $ALIGN RESET*)
- (* $POP*)
-
- END OSAComp.
-